Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
data class InputAgeData(    val title: String,     val inputStyle: InputStyle = InputStyle.DataInputStyle(),     val isRequired: Boolean = false,     val imeAction: ImeAction = ImeAction.Next,     val dateOfBirthLabel: String? = null,     val orLabel: String? = null,     val ageLabel: String? = null,     val acceptText: String? = null,     val cancelText: String? = null,     val is24hourFormat: Boolean = false,     val selectableDates: SelectableDates? = null)
Link copied to clipboard
Link copied to clipboard
data class InputDateTimeData(    val title: String,     val inputStyle: InputStyle = InputStyle.DataInputStyle(),     val imeAction: ImeAction = ImeAction.Next,     val isRequired: Boolean = false,     val actionType: DateTimeActionType = DateTimeActionType.DATE_TIME,     val allowsManualInput: Boolean = true,     val visualTransformation: DateTimeVisualTransformation,     val is24hourFormat: Boolean = false,     val acceptText: String? = null,     val cancelText: String? = null,     val outOfRangeText: String? = null,     val incorrectHourFormatText: String? = null,     val selectableDates: SelectableDates = SelectableDates("01011940", "12312300"),     val yearRange: IntRange = IntRange(1970, 2100))
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun rememberAdditionalInfoColumnState(    additionalInfoList: List<AdditionalInfoItem>,     syncProgressItem: AdditionalInfoItem,     expandLabelText: String = provideStringResource("show_more"),     shrinkLabelText: String = provideStringResource("show_less"),     minItemsToShow: Int = 3,     scrollableContent: Boolean = false): AdditionalInfoColumnState
Link copied to clipboard
fun rememberInputAgeState(    inputAgeData: InputAgeData,     inputType: AgeInputType = AgeInputType.None,     inputState: InputShellState = InputShellState.UNFOCUSED,     legendData: LegendData? = null,     supportingText: List<SupportingTextData>? = null): InputAgeState
Link copied to clipboard
fun rememberInputDateTimeState(    inputDateTimeData: InputDateTimeData,     inputTextFieldValue: TextFieldValue = TextFieldValue(),     inputState: InputShellState = InputShellState.UNFOCUSED,     legendData: LegendData? = null,     supportingText: List<SupportingTextData>? = null): InputDateTimeState
Link copied to clipboard
fun rememberListCardState(    title: ListCardTitleModel,     description: ListCardDescriptionModel? = null,     lastUpdated: String? = null,     additionalInfoColumnState: AdditionalInfoColumnState,     loading: Boolean = false,     shadow: Boolean = true,     expandable: Boolean = false,     itemVerticalPadding: Dp? = null,     selectionState: SelectionState = SelectionState.NONE): ListCardState